.language-selector {
    position: relative;
    max-width: 160px;
}

.language-selector .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

.language-selector .form-select:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-selector .form-select:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1);
    outline: none;
}

.language-selector .form-select option {
    background-color: #2c3e50;
    color: #fff;
    padding: 0.5rem;
}

/* Dark background variant */
.bg-dark .language-selector .form-select,
.navbar-dark .language-selector .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Light background variant */
.bg-light .language-selector .form-select,
.navbar-light .language-selector .form-select {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #212529;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23212529' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.bg-light .language-selector .form-select:hover,
.navbar-light .language-selector .form-select:hover {
    background-color: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
}

.bg-light .language-selector .form-select option,
.navbar-light .language-selector .form-select option {
    background-color: #fff;
    color: #212529;
}

/* Responsive */
@media (max-width: 768px) {
    .language-selector {
        max-width: 140px;
    }
    
    .language-selector .form-select {
        font-size: 0.813rem;
        padding: 0.4rem 2rem 0.4rem 0.75rem;
    }
}



    /* ── TEAM SECTION ── */
    .team-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      transition: all .3s ease;
      border: 1px solid var(--gray-200);
      height: 100%;
    }
    .team-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 32px rgba(26,86,219,.15);
      border-color: var(--primary-light);
    }
    .team-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 1;
    }
    .team-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .4s ease;
    }
    .team-card:hover .team-img img {
      transform: scale(1.1);
    }
    .team-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(26,86,219,.95) 100%);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      transition: opacity .3s ease;
    }
    .team-card:hover .team-overlay {
      opacity: 1;
    }
    .team-social {
      width: 38px;
      height: 38px;
      background: white;
      color: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 16px;
      transition: all .2s;
      transform: translateY(20px);
    }
    .team-card:hover .team-social {
      transform: translateY(0);
    }
    .team-social:nth-child(1) { transition-delay: 0s; }
    .team-social:nth-child(2) { transition-delay: .05s; }
    .team-social:nth-child(3) { transition-delay: .1s; }
    .team-social:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
    }
    .team-info {
      padding: 20px;
      text-align: center;
    }
    .team-name {
      font-size: 18px;
      font-weight: 700;
      color: var(--gray-900);
      margin-bottom: 6px;
    }
    .team-role {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-bottom: 10px;
    }
    .team-desc {
      font-size: 13.5px;
      color: var(--gray-600);
      margin-bottom: 0;
      line-height: 1.5;
    }
